home *** CD-ROM | disk | FTP | other *** search
/ Explore Yellowstone / Explore Yellowstone (1997)(The Learning Company)[PC-Mac].iso / mac / GUIDECON.DIR / 00011_Script_sc bookmark < prev    next >
Text File  |  1996-02-29  |  573b  |  21 lines

  1. on mouseDown
  2.   -- button is hardwired for speed & to eliminate ambiguous behavior
  3.   
  4.   set the castNum of sprite 4 to the number of cast "BOOKMK1"
  5.   updateStage
  6.   puppetSprite gsGuideChannel, FALSE      -- clear the old button
  7. end
  8.  
  9. on mouseUp
  10.   -- button is hardwired for speed & to eliminate ambiguous behavior
  11.   global gbTOC, indexLine, subjectLine
  12.   
  13.   set the castNum of sprite 4 to the number of cast "BOOKMK2" -- hardwired to 4
  14.   updateStage
  15.   set gbTOC = FALSE
  16.   set indexLine = 0
  17.   set subjectLine = 0
  18.   GetBookmarksList
  19.   go to "bookmark1"
  20. end
  21.